home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEAttach.au3 < prev    next >
Text File  |  2007-09-08  |  868b  |  22 lines

  1. ; *******************************************************
  2. ; Example 1 - Attach to a browser with "AutoIt" in its title, display the URL
  3. ; *******************************************************
  4. ;
  5. #include <IE.au3>
  6. $oIE = _IEAttach ("AutoIt")
  7. MsgBox(0, "The URL", _IEPropertyGet ($oIE, "locationurl"))
  8.  
  9. ; *******************************************************
  10. ; Example 2 - Attach to a browser with "The quick brown fox"
  11. ;                in the text of it's top-level document
  12. ; *******************************************************
  13. ;
  14. #include <IE.au3>
  15. $oIE = _IEAttach ("The quick brown fox", "text")
  16.  
  17. ; *******************************************************
  18. ; Example 3 - ; Attach to a browser control embedded in another window
  19. ; *******************************************************
  20. ;
  21. #include <IE.au3>
  22. $oIE = _IEAttach ("A Window Title", "embedded")